History Length



It is surprising to know that a web page can actually know how many pages you have been to this browser session. That is exactly what this script does. 

--------------------------------------------------------------------------------
 

<!-- ONE STEP TO INSTALL HISTORY LENGTH:

   1.  Paste the designated coding into the BODY of your HTML document  -->

<!-- STEP ONE: Copy this code into the BODY of your HTML document  -->

<BODY>

<CENTER>
<SCRIPT>

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

var times=history.length;
document.write('You\'ve been to '+times+' site(s) in this browser session.');
</SCRIPT>
</CENTER>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  0.52 KB  -->
